runtime.mheap.curArena (field)
15 uses
runtime (current package)
mheap.go#L188: curArena struct {
mheap.go#L1477: end := h.curArena.base + ask
mheap.go#L1479: if nBase > h.curArena.end || /* overflow */ end < h.curArena.base {
mheap.go#L1490: if uintptr(av) == h.curArena.end {
mheap.go#L1493: h.curArena.end = uintptr(av) + asize
mheap.go#L1498: if size := h.curArena.end - h.curArena.base; size != 0 {
mheap.go#L1502: sysMap(unsafe.Pointer(h.curArena.base), size, &gcController.heapReleased)
mheap.go#L1509: h.pages.grow(h.curArena.base, size)
mheap.go#L1513: h.curArena.base = uintptr(av)
mheap.go#L1514: h.curArena.end = uintptr(av) + asize
mheap.go#L1521: nBase = alignUp(h.curArena.base+ask, physPageSize)
mheap.go#L1525: v := h.curArena.base
mheap.go#L1526: h.curArena.base = nBase
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |